home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 6_functions / strlen < prev    next >
Text File  |  2001-03-21  |  549b  |  23 lines

  1. Synopsis:
  2.    $strlen(<string>)
  3.  
  4. Technical:
  5.    This function is used to determine the length, in characters, of a given
  6.    string.
  7.  
  8. Practical:
  9.    This function is effectively the same as the $@var notation, except that
  10.    $@var only works for variables, not functions or automatic expandos.
  11.  
  12. Returns:
  13.    >0   number of characters in string
  14.     0   no string given
  15.  
  16. Examples:
  17.    $strlen($1-3)                  returns length of args $1 to $3
  18.    $strlen(epic is cool)          returns "12"
  19.  
  20. See Also:
  21.    Special_Vars(7); numwords(6)
  22.  
  23.